home *** CD-ROM | disk | FTP | other *** search
/ Ray Dream Studio / Ray Dream Studio (CDRAYD1) (Ray Dream) (1995).iso / DREAMSDK.WIN / INCLUDE / MTYPES.H < prev    next >
C/C++ Source or Header  |  1995-09-06  |  439b  |  35 lines

  1. /* $Id: mtypes.h 1.1 1995/06/29 09:36:32 YannPC Exp $ */
  2. #ifndef __MTYPES__
  3. #define __MTYPES__
  4.  
  5. #ifdef _WIN31
  6.     #define  true 1
  7.     #define  false 0 
  8. #endif
  9.  
  10. #ifdef _MAC
  11.     #ifndef __TYPES__
  12.     #include <Types.h>
  13.     #endif
  14. #endif
  15.  
  16. typedef unsigned char Boolean; 
  17.  
  18. #ifndef nil
  19. #define nil 0
  20. #endif
  21.  
  22. #ifndef NULL
  23. #define NULL 0
  24. #endif
  25.  
  26. #ifndef TRUE
  27. #define TRUE 1
  28. #endif
  29.  
  30. #ifndef FALSE
  31. #define FALSE 0
  32. #endif
  33.  
  34. #endif
  35.